home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / viewkit / builderExamples / stopwatch / FaceDerived.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  610 b   |  29 lines

  1. //////////////////////////////////////////////////////////////
  2. //
  3. // Header file for FaceDerived a subclass template
  4. //
  5. //    This file is generated by BuilderXcessory, ViewKit code generator.
  6. //////////////////////////////////////////////////////////////
  7. #ifndef FACEDERIVED_H
  8. #define FACEDERIVED_H
  9. #include "Face.h"
  10.  
  11. class FaceDerived : public Face
  12. {
  13.   protected:
  14.  
  15.     int _count;  // Typed line
  16.     
  17.   private: 
  18.  
  19.   public:
  20.  
  21.     FaceDerived(const char *, Widget);
  22.     ~FaceDerived();
  23.     const char *   className();
  24.  
  25.     void updateTimeCallback(VkCallbackObject *, void *, void *);  // Typed line
  26. };
  27. #endif
  28.  
  29.